home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 4.3 KB | 126 lines | [TEXT/ScoM] |
- HOW TO MAKE PERMUTATIONS
-
- >I want to create permutations of a melody such that the pitches are shifted
- >one note to the left. That is the permutation starts with the second pitch
- >of the original series but with the rhythmic value of the first note etc.
-
- Melodies in SCOM are represented as symbol patterns, like (a b c d e).
-
- (setq melody '(a b c d e))
-
- You can rotate the symbol pattern with symbol-scroll:
-
- (symbol-scroll 1 melody)
- --> (e a b c d)
-
- (symbol-scroll 2 melody)
- --> (d e a b c)
-
- Let's cook a simple score. Here all play in chromatic tonality starting at c 4.
- No tonality changes for now. Piano starts first, then bass starts at bar 5 and
- then clarinet starts at bar 9.
-
- All instruments use same rhythmic and will play in rhythmic unison, but the
- melody is scrolled as in above with symbol-scroll. Each instrument uses velocity
- value 64.
-
- Let's define the orchestra.
-
- (def-orchestra 'orchestra
- all-instr (piano bass clarinet)
- )
-
- Let's define a section.
-
- (def-section-timesheet sect-a
- ;
- ; zones and tonalities
- ;
- with 1/1 ;1 5 9 these are bars
- ; !---!---!---!---!---!---!---!---!
- tonality "." (activate-tonality (chromatic c 4))
- piano "----------------"
- bass " -------------"
- clarinet " ----------"
- ;
- ; rhythmics, melodies and velocities
- ;
- beat 1/16 ; !---!---!---!---! ; each column here is now 1/16 note
- legato 90
- piano "- -- - - - --- " melody with '(64) ; the string here is a rhythmic pattern
- bass "- -- - - - --- " (symbol-scroll 1 melody) with '(64)
- clarinet "- -- - - - --- " (symbol-scroll 2 melody) with '(64)
- )
-
- (midiport :printer)
-
- Let's play it.
-
- (play-file-p "permutations"
- all-instr '(sect-a)
- )
-
- Note, use symbol-shift for creating rest notes:
-
- (symbol-shift 1 melody)
- --> (= a b c d)
-
- (symbol-shift 2 melody)
- --> (= = a b c)
-
- >If I understand the symbol-tonality relationship correctly
- >it can be used to transpose a series of pitches into any arbitrary scale.
-
- You can use symbol-transpose:
-
- (symbol-transpose 1 melody)
- --> (b c d e f)
-
- Or you can combine the functions
-
- (symbol-transpose 1 (symbol-scroll 1 melody))
- --> (f b c d e)
-
- Symbols are mapped on the tonality so that a maps to the first note of
- the active tonality, b the second, c the third and so on. When the
- tonality is a scale like the chromatic in the above example you can
- play the notes of that scale. A chord tonality, or a microtonal tuning
- tonality can also be used. You can change tonalities, and use different
- tonalities for each instrument, if necessary. It is a very flexible
- system and there are lots of generators and processors for both
- symbols and tonalities.
-
- >That is if the original series goes up by step for four notes
- >then the transposed series goes up by step in the new scale and
- >the new scale could consist of a series of intervals
- >each of which is greater than an octave right Sorry if this is not
- >clear.
-
- In the above you could give each instrument its own tonality. Let's
- keep piano playing chromatic scale. Let bass switch between chromatic
- and major scales playing 2 bars each. And let clariner switch
- tonalities in each bar using 3 hirajoshi scale in different transpose
- positions. See the dots, they represent tonality change points. In
- our example each column is defined to be one bar, but technically it
- could be of any size and different for each instrument. SCOM does not
- represent limitations on those things.
-
- tonality "." (activate-tonality (chromatic c 4))
- piano "----------------"
- tonality " . . . . . . . " (activate-tonality (chromatic c 4)
- (major c 4))
- bass " -------------"
- tonality "................" (activate-tonality (hirajoshi c 4)
- (hirajoshi d 3)
- (hirajoshi e 2))
- clarinet " ----------"
-
- >So is the interface simply a text editor
-
- Just write it in aboveand then compile it to music which takes few
- seconds or a couple of minutes for complex scores. Your previous score
- plays in the background while compiling new material and it is nice to
- search sounds while waiting the new piece to finish. Rhythmics can also
- be notated as ratios like 1/16. 1/4.... 1/4-3 (triplet) etc.
-
-